home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 734 / powervisor / s / pv / printhist.pv < prev    next >
Text File  |  1995-03-18  |  295b  |  17 lines

  1. /* Print all the lines in the history buffer */
  2. /* Execute this script with: rx s:pv/printhist */
  3. /* Version 1.1   Mon Sep 23 15:01:14 1991 */
  4.  
  5. options results
  6.  
  7. 'void *({pvcall 36}+166)'
  8. line=result
  9.  
  10. do while line ~= 0
  11.     'print \('||line+10||',%s)'
  12.     'print \0a'
  13.     'void *'||line
  14.     line=result
  15. end
  16.  
  17.